.title{
  font-size:70px;
  font-weight:900;
  letter-spacing:4px;
  text-align:center;

  /* Smooth Gradient */
       background: linear-gradient(45deg, #ffffff, hsla(0, 0%, 100%, 0.61), #ffffff);


  background-size:300%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  /* Smooth animation (IMPORTANT CHANGE HERE) */
  animation:colorMove 6s ease-in-out infinite;
}

/* Smooth slow movement */
@keyframes colorMove{
  0%{
    background-position:0% 50%;
  }
  50%{
    background-position:100% 50%;
  }
  100%{
    background-position:0% 50%;
  }
}

  /* Responsive */
  @media(max-width:768px){
    .title{
      font-size:45px;
    }
  }

  @media(max-width:480px){
    .title{
      font-size:30px;
    }
  }



.pt {
    /* background: #000000; */
    min-height: 100vh;
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    padding-bottom: 80px;
  }

  .pt::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(240, 165, 0, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .nav {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 28px 20px 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
  }

  .nb {
   position: relative;
  display: inline-block;
  padding: 15px 30px;
  border-image: linear-gradient(45deg, #000000, #1a78ab) 1;
  text-transform: uppercase;
  color: #fefefe;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  transition: 0.3s;
  background-color: transparent;
  cursor: pointer;
  }
  .nb::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: -999;
  width: calc(100% + 6px);
  height: calc(100% + 2px);
  background-color: #000000;
  transition: 0.3s ease-out;
  transform: scaleY(1);
}

 .nb::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% - 50px);
  background-color: #000000;
  transition: 0.3s ease-out;
  transform: scaleY(1);
}

 .nb:hover::before {
  transform: translateY(-25px);
  height: 0;
}

 .nb:hover::after {
  transform: scaleX(0);
  transition-delay: 0.15s;
}

 .nb:hover {
  border-image: linear-gradient(45deg, #2caadb, #000000) 1;
}

 .nb .spn2 {
  position: relative;
  z-index: 3;
  text-decoration: none;
  border: none;
  background-color: transparent;
}
/* ===============================
   MOBILE RESPONSIVE FIX
   =============================== */

@media screen and (max-width: 768px){

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center all items */
        gap: 19px;
  }

  .nb {
    flex: 0 1 auto;
  }

  /* center last button (LOGO DESIGN) */
  .nb:last-child {
          margin-left: 34px;
  }

  /* fix animation height issue on mobile */
  .nb::after {
    height: calc(100% - 60px);
  }

  .nb::before {
    width: calc(100% + 4px);
    height: calc(100% + 2px);
  }

}

/* EXTRA SMALL DEVICES */
@media screen and (max-width: 480px){

  .nav {
    gap: 17px;
    padding: 11px;
    padding-bottom: 40px;
  
  }

  .nb {
    padding: 8px 14px;
    font-size: 12px;
  }

}

  /* .nb.active {
    background: linear-gradient(135deg, #f0a500, #c97d00);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(240, 165, 0, 0.4);
  }

  .nb:hover:not(.active) {
    color: #f0a500;
    border-color: #f0a50055;
  } */

  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    perspective: 1200px;
    position: relative;
    z-index: 5;
  }

  .card {
    opacity: 0;
    transform: rotateY(25deg) rotateX(8deg) translateY(60px) scale(0.88);
    transition: opacity 0.6s cubic-bezier(.22, .68, 0, 1.2), transform 0.6s cubic-bezier(.22, .68, 0, 1.2);
    transform-style: preserve-3d;
    will-change: transform, opacity;
    cursor: pointer;
  }

  .card.in {
    opacity: 1;
    transform: rotateY(0deg) rotateX(0deg) translateY(0) scale(1);
  }

  .card.out {
    opacity: 0;
    transform: rotateY(-25deg) rotateX(-8deg) translateY(-40px) scale(0.88);
    pointer-events: none;
  }

  .card-inner {
    border-radius: 16px;
    overflow: hidden;
    /* border: 1px solid #222;
    background: #111; */
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
  }

  .card:hover .card-inner {
    transform: rotateY(-4deg) rotateX(4deg) translateZ(16px);
    box-shadow: 8px 16px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgb(44, 170, 219, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-color: #2ca9db3f;
  }

  .img-wrap {
    position: relative;
    height:361px;
    overflow: hidden;
  }

  .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
  }

  .card:hover .img-wrap img {
    transform: scale(1.06);
  }

  .shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0s;
  }

  .card:hover .shimmer {
    transform: translateX(200%);
    transition: transform 0.6s ease;
  }

  .gold-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #1c76ad, #2caadb, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .card:hover .gold-line {
    transform: scaleX(1);
  }
  

  .tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(240, 165, 0, 0.15);
    border: 1px solid rgba(240, 165, 0, 0.35);
    color: #f0a500;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 3px 9px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    display: none;
  }

  .see-wrap {
    display: flex;
    justify-content: center;
    margin-top: 44px;
    position: relative;
    z-index: 5;
  }

  .smb {
    background: linear-gradient(135deg, #2caadb, #000000);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 42px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s cubic-bezier(.22, .68, 0, 1.2);
    box-shadow: 0 6px 28px rgb(44, 170, 219, 0.35);
    position: relative;
    overflow: hidden;
  }

  .smb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000000, #1a76ab);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .smb:hover::before {
    opacity: 1;
  }

  .smb:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 36px rgb(26, 118, 171, 0.55);
  }

  .smb:active {
    transform: scale(0.97);
  }

  .smb-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
  }

.ico {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
    transition: transform 0.5s cubic-bezier(.22, .68, 0, 1.2);
}

  .smb.open .ico {
      transform: rotate(315deg);
  }

  .badge {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    padding: 2px 10px;
    font-size: 11px;
    letter-spacing: 1px;
  }

  @media(max-width:700px) {
    .grid {
      grid-template-columns: 1fr;
    }
  }

  @media(max-width:900px) and (min-width:701px) {
    .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }